render_template()
除了可以染前端頁面,還可以使用它來接收前端頁面回傳的參數。
{{ }}
是一種 jinja2 的語法,是使用在渲染到頁面上的標籤index.html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>index</title>
</head>
<body>
<h1>Hello {{ username }}</h1>
</body>
</html>
app.py
import configs as CONFIGS
from flask import Flask, render_template
app = Flask(__name__)
app.config.from_object(CONFIGS)
@app.route("/")
def index():
return render_template('index.html', username='alan')
if __name__ == "__main__":
app.run()
執行結果